home *** CD-ROM | disk | FTP | other *** search
/ Java Developer's Companion / Java Developer's Companion.iso / Javacup / INGZP26A.TAR / internet / INGZP26A / InfoPanel.java < prev    next >
Encoding:
Java Source  |  1996-05-21  |  473 b   |  27 lines

  1. /* $Id: InfoPanel.java,v 1.3 1996/03/28 01:16:32 djun Exp $
  2.  
  3.    File: InfoPanel.java
  4.  
  5.    Author: Djun M. Kim
  6.    Copyright (c) 1996 Djun M. Kim.  All rights reserved.
  7.  
  8. */
  9.  
  10. import java.awt.*;
  11.  
  12. public class InfoPanel extends Panel {
  13.  
  14.     TextField textf = new TextField("Map Info");
  15.  
  16.     InfoPanel(MapInfo target) {           
  17.     setLayout(new GridLayout(1,1));
  18.     textf.setEditable(false);
  19.     add(textf);
  20.     }
  21.  
  22.     public void display(String s) {
  23.     this.textf.setText(s);
  24.     }
  25. }
  26.  
  27.